home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
filelist
/
filepull.frm
< prev
next >
Wrap
Text File
|
1995-09-07
|
1KB
|
49 lines
VERSION 2.00
Begin Form FilePull
BackColor = &H00FFFFC0&
BorderStyle = 1 'Fixed Single
Caption = "FilePull"
ClientHeight = 1470
ClientLeft = 2325
ClientTop = 1560
ClientWidth = 2820
ControlBox = 0 'False
Height = 1875
Left = 2265
LinkMode = 1 'Source
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1470
ScaleWidth = 2820
Top = 1215
Width = 2940
Begin PictureBox FileList
BackColor = &H000000FF&
Height = 1000
Left = 0
ScaleHeight = 975
ScaleWidth = 975
TabIndex = 0
Top = 0
Width = 1000
End
End
Sub FileList_KeyDown (KeyCode As Integer, Shift As Integer)
If KeyCode = KEY_RETURN Then
If FileList.ListSelect(0) <> -1 Then
a$ = FileList.ListArray(FileList.ListSelect(0))
SetReturn a$
End If
Unload FilePull
End If
End Sub
Sub Form_GotFocus ()
FileList.SetFocus
End Sub